home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960209-19960425 / 000224_news@columbia.edu _Mon Mar 18 18:48:49 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with ESMTP id SAA01428 for <kermit.misc@watsun>; Mon, 18 Mar 1996 18:48:48 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.3/8.7.3) id SAA24230 for kermit.misc@watsun; Mon, 18 Mar 1996 18:48:44 -0500 (EST)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: Help! Two problems with C-Kermit
  8. Date: 18 Mar 1996 23:48:36 GMT
  9. Organization: Columbia University
  10. Lines: 61
  11. Message-ID: <4iksok$nl0@apakabar.cc.columbia.edu>
  12. References: <4ikk5v$mf7@nuntius.u-net.net>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <4ikk5v$mf7@nuntius.u-net.net>,
  16. Andy Stephens  <stephensaj@cheshire-cc.btx400.co.uk> wrote:
  17. : We are currently experiencing a couple of problems with C-Kermit v5a(179) 
  18. : BETA 7 Feb 92. 
  19. As you can tell from its designation, that is not a released version of
  20. C-Kermit.  The current version of C-Kermit is 5A(190).
  21.  
  22. : Kermit on the PC is within the Kea! 340 comms package:
  23. :
  24. : 1) We have a series of VMS text files that don't contain any form of 
  25. : carriage returns/line feeds. When we transfer to a PC, all lines of the 
  26. : file are strung together in one large 'lump'. However, another transfer 
  27. : protocol we use is somehow able to insert CR/LF characters (presumably by 
  28. : looking at the record size of the VMS file). Can this be done in 
  29. : C-Kermit? Do we need a newer version?
  30. What do you mean "VMS text files"?  What is the record format?  All of this
  31. is explained in great detail in the VMS Appendix of the C-Kermit manual,
  32. "Using C-Kermit".  Please read it.
  33.  
  34. : 2) This may be a network problem. We are trying to use C-Kermit over 
  35. : Pathworks (sorry I haven't got the version number to hand). It is using 
  36. : LAT over ethernet cards. When we try a transfer from PC to vax (binary or 
  37. : text, doesn't matter, nor does file size) the errors immediately count up 
  38. : to the limit of 10 (within a second or two), and the transer aborts. 
  39. :
  40.  
  41. That is normal for LAT.  LAT was never designed for transferring files into
  42. a VMS system; it was designed for people sitting at terminals, typing at a
  43. keyboard (maximum speed -- about 100 characters per second).  Its buffers in
  44. the "upstream" direction are tiny.  The solution (as you have learned) is to
  45. use a very small packet size when transferring into the VMS system over a
  46. LAT connection.  You can still use large packets when transferring from VMS
  47. to the PC.
  48.  
  49. EXTRA CREDIT: Find a VMS expert who might be able to tell you how to
  50. configure the LAT buffers to be bigger, and the same size in both
  51. directions.
  52.  
  53. : When you look at the protocol.log, there are one or two corrupted 
  54. : characters within the main data packet that appear in exactly the same 
  55. : place, 255 bytes apart...
  56. :
  57. Which would be the buffer size...
  58.  
  59. : ... although the corrupted character itself varies. 
  60. : We use 2 sliding windows, 512 byte packet size.
  61. : The only time we have got it to work is by setting the packet size to 80, 
  62. : but this obviously affects transfer performance quite drastically.
  63. :
  64. : Any ideas?
  65. Use TCP/IP and Telnet instead of LAT?
  66.  
  67. For information about the current C-Kermit version, the manual, and
  68. everything else to do with Kermit, visit our Web site:
  69.  
  70.   http://www.columbia.edu/kermit/
  71.  
  72. - Frank